home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr46 / vfwdk.zip / VFWSDK.ZIP / SAMPLES / MSRLEC / RLE.H < prev    next >
C/C++ Source or Header  |  1993-01-31  |  983b  |  28 lines

  1. /****************************************************************************
  2.  *
  3.  *   RLE.H - RLE Delta frame routine
  4.  *
  5.  *   Copyright (c) 1992-1993 Microsoft Corporation.  All Rights Reserved.
  6.  *
  7.  *    You have a royalty-free right to use, modify, reproduce and 
  8.  *    distribute the Sample Files (and/or any modified version) in 
  9.  *    any way you find useful, provided that you agree that 
  10.  *    Microsoft has no warranty obligations or liability for any 
  11.  *    Sample Application Files which are modified. 
  12.  *
  13.  ***************************************************************************/
  14.  
  15. /* code in playrle.c */
  16.  
  17. void PlayRleDib(HANDLE hdib, HANDLE hrle);
  18. void PlayRle(LPBITMAPINFOHEADER lpbi, LPVOID pDib, LPVOID pRLE);
  19.  
  20. /* code in df.asm */
  21.  
  22. extern void   FAR  PASCAL DeltaFrame386(
  23.     LPBITMAPINFOHEADER  lpbi,
  24.     LPVOID              pbPrev,
  25.     LPVOID              pbDib,
  26.     LPVOID              pbRle,
  27.     WORD                MinJumpLength );
  28.